Coming from NetApp's on-premise OnCommand Insight (OCI) offering, where I have a lot of integrations that talk directly to the MySQL database on the Data Warehouse server, NetApp's new cloudy offering - Cloud Insights (CI) - introduces new challenges.
~~~
There is a new (only in customer preview at the moment) ODATA interface that allows using REST API to do things like MySQL selects. One idea being that you could do a limited ETL from the Cloud Insights DWH to an on-premise MySQL server if you so wish (a local repository of some of the CI data, which may be useful for designing report queries - there is a cloud based version of Cognos in CI.)
One option for populating the dwh_custom is to use the REST API for uploading CSVs:
/dwh-management/upload/csvs : Upload csv file to be processed by Data Warehouse custom script (secondary/post ETL)
Currently, you need to reach out to the NetApp SRE team to get the Data Warehouse custom script uploaded to CI.
~~~
I honestly think the challenges of moving from OCI to CI are well worth it. We live in an age were everything is going REST API. The old MySQL interfaces are old-skool. Upgrading integrations to use REST API, is an effort well worth doing.
Also, the benefits of scalability (being built on MicroServices - not the Monolithic architecture of OCI), single-pane-of glass (i.e. you don't need multiple OnCommand Insight servers if you're a large enterprise), CI/CD software delivery (i.e. you don't need to schedule a potentially scary OCI & DWH upgrade - CI is upgraded for you, and all the Acquisition Units automatically upgrade too) and many more new and cool features (that won't come to OCI, like Kubernetes, the Data Lake, Cloud Secure..)
Note: I was wondering what the use case was for the Data Lake. I was thinking it was a repository for the same kind of stuff you'd stick in dwh_custom. But no, the Data Lake holds 90 days worth of data. The Data Lake is useful for timeseries data, i.e. MySQL server telemetry, anything injest-able using Telegraf, etcetera.
- ODATA has a 10'000 rows / 10 minute timeout.
- PUT for input, PATCH for updates, POST not used...
- ODATA primarily for data extraction.
- CI DWH ODATA Questions:
- Create table?
- Insert into table?
- Update into table?
- Delete from table?
- Call procedures?
- Drop/Truncate table?
- SQL Permissions?
Comments
Post a Comment