Reputation: 331
I have been attempting to find information on how to utilize Apache Beam with Cassandra in Python, but I have not been successful in my search. I am curious if the use of cassandraio library is supported for Python? If anyone could provide any insight or resources on this matter, it would be greatly appreciated.
Thank you kindly.
Upvotes: 0
Views: 123
Reputation: 6572
The CassandraIO
exists natively in Beam
Java
but unfortunately not in Beam
Python
.
You can check this link to have the list of supported IOs with Beam
.
The Javadoc for CassandraIO
.
I also saw this link with an example from a Github
repository.
Upvotes: 0