Questions tagged [tigergraph]

32 questions
4
votes
2 answers

Sharding a graph database

I was wondering how databases like Dgraph and TigerGraph managed to shard the graph in-order to support horizontal scaling without breaking the connections between nodes besides supports a lot of interesting algorithms. And they claim to be a…
Rawhi
  • 6,155
  • 8
  • 36
  • 57
2
votes
1 answer

TigerGraph - Loading data to a user defined Tuple through Spark

Can anyone help me figure out how we can load data into a Tuple created inside TigerGraph DB? I have created the following Tuple and I am trying to load data from a file using Spark. Graph Name: MyGraph Tuple Name: MyTuple Attributes of MyTuple: ID…
2
votes
2 answers

JDBC Driver for TigerGraph DB

I am trying to connect to Tigergraph DB from Spark using IntelliJ IDE. Can anyone help with the jdbc driver (.jar) file? I am looking for "com.tigergraph.jdbc.Driver". I did find below gitHub repository with all the required .java file. But, I am…
Surya
  • 45
  • 5
2
votes
1 answer

What is a REST-3002 error on TigerGraph mean?

Where are error codes for TigerGraph located? We have a have a 3002 error code when running an GSQL.
Herk
  • 209
  • 1
  • 4
1
vote
1 answer

In TigerGraph How can the query time be measured when executing the query?

How can the query time be measured when executing the query (such as (between centralization, closeness centralization, .....) the execution time does not appear, i.e. when executing does not know how long it takes. with many thanks
bahzad
  • 19
  • 3
1
vote
1 answer

Unable to create TigerGraph schema with pyTigerGraph - Connection Refused

I am an absolute beginner in TigerGraph, and I'm following this tutorial to get familiar with it. In the part of this tutorial where a Python script is used to connect to the TigerGraph solution and create a schema, I am getting a "connection…
RishiC
  • 768
  • 1
  • 10
  • 34
1
vote
1 answer

Load parquet to tigergraph from S3 using PyTigerGraph

I have this working GSQL script: use graph test_graph drop job test_job drop data_source deep_disco_test create data_source S3 deep_disco_test for graph test_graph set my_source = "/home/ubuntu/s3.config" CREATE LOADING JOB test_job for GRAPH…
Tytire Recubans
  • 967
  • 10
  • 27
1
vote
1 answer

Tigergraph - recreate tuples

I need to write a command-line utility which redefines/updates the graph schema. For doing this I need to: drop the graph drop existing tuples define new tuples define a new graph The problem is in the "drop existing tuples" stage. I do it by…
v.korbut
  • 33
  • 4
1
vote
1 answer

#TigerGraph Import : one csv for each relation type?

I’ve just started using TigerGraph, and I saw in the import example that the edges files: friendship.csv is separated from the vertices files: person.csv. Does it mean that if I have, say, 10 edges types I need or it would be better, to have 10…
Raphael10
  • 2,508
  • 7
  • 22
  • 50
1
vote
2 answers

pyTigerGraph Connector Issue with TigerGraph Cluster on AWS

Like to tap into the community intelligence on this specific issue I encountered when trying to access TigerGraph Cluster on AWS using the Python Connector. It seemed my API worked and I was able to run most functions, except when I tried to run…
Carolyn Z.
  • 11
  • 1
1
vote
1 answer

TigerGraph modeling: "composite" vertex possible?

I am exploring TigerGraph and was wondering how to model the following construct. Suppose I have a Work that has 1 or more Authors. Each Author is a Person who is affiliated to an Organisation during a certain period. Instead of connecting a Work to…
M_breeb
  • 195
  • 1
  • 9
1
vote
1 answer

Is any way to use more than one vertex set in a SELECT statement?

I was wondering if there is any way to use more than one vertex set in a SELECT statement. I would think it should be possible because... why not? For example, say we have this basic query: CREATE QUERY coolQuery(VERTEX foo, String bar, String…
Herk
  • 209
  • 1
  • 4
1
vote
1 answer

What is the common practice of uninstalling the developer or enterprise edition of TigerGraph?

We are experimenting with TigerGraph for a graph database solution. In the processes of testing we have switch from developer edition to enterprise edition. We wanted to know if there is a best practice on uninstalling TigerGraph.
Herk
  • 209
  • 1
  • 4
0
votes
1 answer

How to use TigerGraph GSQL to associate data from one Vertex to another Vertex?

I am a beginner and trying to make several Vertex shown on the TigerGraph Insights Map Widget. The Map widget displays vertex attributes as latitude and longitude, and I have shown the Location Vertex on the Map Widget successfully. But the other…
0
votes
1 answer

what is the meaning of `explicitlyDeleted=false` in LDBC?

I am looking at the LDBC benchmark which has contributions from Neo4j and TigerGraph. I want to understand how entries are ingested to measure performance. Here are two example entries from…
cpchung
  • 774
  • 3
  • 8
  • 23
1
2 3