問題タブ [datastax-enterprise-graph]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - DSE Graph with Java Driver、エッジを追加する方法
Datastax Java Driver を使用して完全にグラフを作成したいと考えています。なんとか頂点を挿入できましたが、既存の頂点にエッジを追加する方法がわかりません。
次のコードを実行すると
例外が発生します
gremlin_console_window で gremlin ステートメントを実行すると、問題なく動作します。だから私は変数が好きparent
でchild
、Java内で機能していないと思いますDseSession
か?
残念ながら、Java ドライバーを適切に操作する方法に関する情報はあまり見つかりませんでした。
hadoop - graphLoader を使用して、hadoop から datastax グラフにデータをロードするにはどうすればよいですか? (graphLoaderを使用してhadoopからファイルを直接読み取るにはどうすればよいですか)
Hadoop からローカル ディレクトリにファイルをコピーする必要がありますか。
hadoop fs -get [hadoop ソース] [ローカル dst]
使用するには:
https://docs.datastax.com/en/datastax_enterprise/5.0/datastax_enterprise/graph/dgl/dglCSV.html
azure - Datastax Gremlin ツール: ホストが応答しない
DSE 5.0 でリリースされたグラフ エンジンを利用するために、Azure を介して Datastax Enterprise クラスターをデプロイしようとしています。
残念ながら、Azure DSE Deployment は DSE 4.8 をデプロイしますが、これは gremlin または新しい DSE Graph エンジンをサポートしていません。そこで、クラスターのノードをバージョン 5.0 にアップグレードするために、インストール ガイドに従ってみました。
その後、gremlin コンソールを次のコマンドで起動できます。
Datastax Graph Tutorialに従って、を呼び出してグラフを作成しようとするとsystem.graph("test").create()
、次のエラーが発生します。
DSE 4.8 から 5.0 にアップグレードするときに一部の構成を台無しにしたのか、それとも単に gremlin 構成を構成するだけでこれが機能するようになったのかはわかりません。どんな助けでも大歓迎です!
datastax-enterprise - gremlin コンソールを使用して DSE グラフから Edge ラベルを削除する方法
Edge label
からを削除する方法
DataStax Enterprise 5.0 グラフ
使用して
グレムリンコンソール
datastax - Datastax solr と Graph を統合する
私たちのアーキテクチャには、データセンターに 3 つのノードがあります: Solr、SOLR_ENABLED=1
Graph を Datastax に統合する必要があるため、192.168.8.22 で GRAPH_ENABLED=1 を有効にすると、アーキテクチャは 2 つの DC で以下のようになります。現在、solr は 192.168.8.22 で動作していません。
.
1) 既存のデータを失うことなく、Solr とグラフを同じ DC に統合できますか?
2) grap と solr 用に別のデータセンター ノードを作成する必要がありますか?
groovy - Titan 1.0.0 to Datastax Enterprise Migration
I have some existing code that I have written in Groovy for data ingestion into Titan w/ Cassandra + Elasticsearch backend. With the release of Datastax Enterprise 5.0, I was looking to see if the existing code for Titan could be migrated over.
The primary use of the code was to parse out some fields,transform some of the values (ex: datetimestamp -> epoch), and checking for edge uniqueness when adding new edges (ex: 'A likes Apples' relation should only appear once in the graph even though multiple 'A likes Apples' relations may appear in the raw file).
What I have tried so far:
Using the DSE Graph Loader with edge label multiplicity as single (no properties) and vertices multiplicity as single:
Using this template, vertices are unique (one vertex per vertex label). However, edge labels defined in the schema as single will throw an exception every time the "same" edge is attempted to be added. Is it possible to add checks within the loading script for uniqueness?
Loading data through the gremlin console
I'm finding that my pre-existing code throws quite a few exceptions upon executing the load command. After getting rid of a few Java/Titan classes that weren't importing (TitanManagement, SimpleDateFormat could not be imported), I am getting a
Any tips on getting gremlin-console integration working?
One last question: Are there any functions that have been removed with the Datastax acquisition of Titan?
Thanks in advance!
java - Neo4J から DataStax Graph DB (DSE) への移行
Neo4JをグラフDBとして使用して、ルート最適化用のカスタムおよび独自のソフトウェアを開発しました。また、グラフで検索が行われるたびに特定のビジネス ロジックを実装するプラグインとアンマネージド エクステンションを Java で開発しました。Neo4J で重大なパフォーマンスの問題に直面しているため、独自のソフトウェアを Neo4J から DataStaX DSE 5.0 Graph に移行することを検討しています。しかし、最初は DSE Graph を評価したいと考えています。
Neo4J からの移行パス --> DataStax Graph DB に関して具体的な質問がいくつかあります
- Neo4JからDataStax Graph DBにデータを移行する方法は?
- DataStax DSE Graph DBで動作するように、アプリケーションのNeo4J Cypherコードにどのような変更を加える必要がありますか?
- 我々は Java を使用して Neo4J でいくつかのプラグイン/アンマネージ拡張機能を開発しました。これには多くのコア ビジネス ルールが Neo4J に組み込まれています。Java のビジネス ロジック コードは、Neo4J がグラフ データベースを検索/トラバースするたびに呼び出されます。DataStax DSE Graphは、プラグインや管理されていない拡張機能に似たものをサポートしていますか?
既存の Neo4J Java コードを DataStax DSE Graph コードに移行するために何が必要かを確認したいと考えています。DataStax DSE Graphを起動して実行する前に、この演習を行うために必要な労力のレベルを判断する必要があります。