I did a new install on a fresh server (Ubuntu 16 and propus). Still getting the same error so decided to document my own situation on a new thread. I get this error:
"Setting up kaltura-dwh (15.1.0-1) …
Deploying analytics warehouse DB, please be patient as this may take a while…
Output is logged to /opt/kaltura/dwh/logs/dwh_setup.log.Error - bailing out!
DWH configured."
In the log I find this error:
ERROR 1499 (HY000) at line 1: Too many partitions (including subpartitions) were defined
I check the database per Jess’s instructions in the other thread:
mysql> select table_name, count(1) from information_schema.partitions where table_name like ‘dwh_fact_%’ group by table_name;
±------------------------------------±---------+
| table_name | count(1) |
±------------------------------------±---------+
| dwh_fact_active_users | 1 |
| dwh_fact_api_calls | 1 |
| dwh_fact_api_calls_archive | 1 |
| dwh_fact_bandwidth_usage | 1 |
| dwh_fact_bandwidth_usage_archive | 1 |
| dwh_fact_convert_job | 1 |
| dwh_fact_entries_sizes | 1 |
| dwh_fact_errors | 1 |
| dwh_fact_errors_archive | 1 |
| dwh_fact_events | 1024 |
| dwh_fact_events_archive | 1 |
| dwh_fact_fms_sessions | 1 |
| dwh_fact_fms_sessions_archive | 1 |
| dwh_fact_fms_session_events | 1 |
| dwh_fact_fms_session_events_archive | 1 |
| dwh_fact_incomplete_api_calls | 1 |
| dwh_fact_plays_archive | 1 |
±------------------------------------±---------+
17 rows in set (1.24 sec)
What am I doing wrong to cause this?
/Ed