Graph Loader
Diagnosis
No matter what vertex loader ,edge loader ,graph loader or neighbor loader, the UDF is needed to be installed . And Kafka loader is not available in Free Edition .
from pyTigerGraph import TigerGraphConnection
conn = TigerGraphConnection(
host="http://127.0.0.1", # Change the address to your database server's
graphname="imdb",
username="tigergraph",
password="tigergraph"
)
%%time
vertex_loader = conn.gds.vertexLoader(
num_batches=1,
attributes={"movie": ["x"]})