Is there any ETL tool for any Smalltalk dialect?

我是研究僧i 提交于 2019-12-07 09:32:12

问题


...like Talend for Java, for instance, but that allows to implement processes programatically.

Multiple data sources, orchestration, calculated fields, pivot tables are some of the features I would like to have.


回答1:


We've build on top of Moose for a ERP data conversion project. Works well with smaller amounts of data (that fit in a 32-bit image). In ETL with multiple sources, just use an image for each input stream/step, connect them together through files or sockets. The visualization was important for us. It allowed the domain experts to steer the process. Short feedback loop was essential.




回答2:


Nearly 5 years later it is time to revisit this answer. Pharo and Moose support 64 bits. The garbage collector is not yet up to handling very large heaps, the incremental collector to avoid large pauses is in active development now. If the work is partitionable, use a solution like ImageWorker to use multiple cores with all data in one image, or TelePharo to remote control multiple images. Perhaps use MQTT to integrate. For visualization there are Roassal2 and 3 or the whole GToolkit



来源:https://stackoverflow.com/questions/11110427/is-there-any-etl-tool-for-any-smalltalk-dialect

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!