+ 1
What is the best database's software for a IA in Python?
Hello everybody, I am studing Pithon to later I make a IA. But, I would like to know what database's software and language I would gotta use. I saw about SQL, however, will It useful to storage Big and Meta datas?
2 Antworten
+ 4
You should check out some tools handling the big data: (examples made on the Apache stack)
-- Spark, enabling scalable, big data storing and processing:
https://spark.apache.org
-- Hadoop, enabling multi-machine, distributed computing:
https://hadoop.apache.org
-- Kafka, a platform for distributed processing of real-time, streamed data:
https://kafka.apache.org
-- Cassandra, a scalable, replicable and fault-proof noSQL database platform:
https://cassandra.apache.org
Those are just the ones I know, but there are many more:
https://projects.apache.org/projects.html?category#big-data
Good thing is -- they all have nicely working modules in Python handling them :)
+ 3
Thank you so much. I am gonna study a lot :)