├── .github └── workflows │ └── compile-spec.yml ├── .gitignore ├── LEGAL.md ├── LICENSE.txt ├── Makefile ├── NOTICE.txt ├── README.md ├── abstract.tex ├── acid-test.tex ├── acknowledgements.tex ├── analytics-workload.tex ├── arxiv.sh ├── auditing-rules.tex ├── benchmark-overview.tex ├── bib └── references.bib ├── choke-point-query-mapping └── .gitignore ├── choke-points.tex ├── choke-points ├── .gitignore ├── choke-points-queries.tex ├── cp-1-1.tex ├── cp-1-2.tex ├── cp-1-3.tex ├── cp-1-4.tex ├── cp-2-1.tex ├── cp-2-2.tex ├── cp-2-3.tex ├── cp-2-4.tex ├── cp-2-5.tex ├── cp-2-6.tex ├── cp-3-1.tex ├── cp-3-2.tex ├── cp-3-3.tex ├── cp-3-4.tex ├── cp-4-1.tex ├── cp-4-2.tex ├── cp-4-3.tex ├── cp-4-4.tex ├── cp-5-1.tex ├── cp-5-2.tex ├── cp-5-3.tex ├── cp-6-1.tex ├── cp-6-2.tex ├── cp-6-3.tex ├── cp-7-1.tex ├── cp-7-10.tex ├── cp-7-11.tex ├── cp-7-2.tex ├── cp-7-3.tex ├── cp-7-4.tex ├── cp-7-5.tex ├── cp-7-6.tex ├── cp-7-7.tex ├── cp-7-8.tex ├── cp-7-9.tex ├── cp-8-1.tex ├── cp-8-2.tex ├── cp-8-3.tex ├── cp-8-4.tex ├── cp-8-5.tex ├── cp-8-6.tex ├── cp-8-7.tex ├── cp-8-8.tex ├── cp-8-9.tex ├── cp-9-1.tex ├── cp-9-2.tex ├── cp-9-3.tex ├── cp-9-4.tex └── cp-9-5.tex ├── commands.tex ├── data.tex ├── defs.tex ├── executive-summary.tex ├── figures ├── acid │ ├── acid-schema.png │ ├── acid-slides.pptx │ └── bailis.tex ├── audit-workflow.png ├── audit.graphml ├── cc-by.pdf ├── data-schema.png ├── ldbc-logo.pdf ├── ldbc-logo.png ├── measurement-window-selection.graphml ├── measurement-window-selection.png └── schema.pptx ├── generate-tex.py ├── introduction.tex ├── ldbc-finbench-specification.tex ├── ldbc.cls ├── listings.tex ├── main-doc-settings.tex ├── packages.tex ├── patterns ├── .gitignore ├── Manual.md ├── crop.sh ├── transaction-complex-read-01.png ├── transaction-complex-read-02.png ├── transaction-complex-read-03.png ├── transaction-complex-read-04.png ├── transaction-complex-read-05.png ├── transaction-complex-read-06.png ├── transaction-complex-read-07.png ├── transaction-complex-read-08.png ├── transaction-complex-read-09.png ├── transaction-complex-read-10.png ├── transaction-complex-read-11.png ├── transaction-complex-read-12.png ├── transaction-complex-read.pptx ├── transaction-read-write-01.png ├── transaction-read-write-02.png ├── transaction-read-write-03.png ├── transaction-read-write.pptx ├── transaction-simple-read-01.png ├── transaction-simple-read-02.png ├── transaction-simple-read-03.png ├── transaction-simple-read-04.png ├── transaction-simple-read-05.png ├── transaction-simple-read-06.png ├── transaction-simple-read.pptx ├── transaction-write-01.png ├── transaction-write-02.png ├── transaction-write-03.png ├── transaction-write-04.png ├── transaction-write-05.png ├── transaction-write-06.png ├── transaction-write-07.png ├── transaction-write-08.png ├── transaction-write-09.png ├── transaction-write-10.png ├── transaction-write-11.png ├── transaction-write-12.png ├── transaction-write-13.png ├── transaction-write-14.png ├── transaction-write-15.png ├── transaction-write-16.png ├── transaction-write-17.png ├── transaction-write-18.png ├── transaction-write-19.png └── transaction-write.pptx ├── query-card-definitions.tex ├── query-cards └── .gitignore ├── query-specifications ├── [deprecated]transaction-complex-read-10.yaml ├── [deprecated]transaction-complex-read-11.yaml ├── [deprecated]transaction-simple-read-07.yaml ├── [deprecated]transaction-simple-read-08.yaml ├── [deprecated]transaction-write-12.yaml ├── [deprecated]transaction-write-15.yaml ├── transaction-complex-read-01.yaml ├── transaction-complex-read-02.yaml ├── transaction-complex-read-03.yaml ├── transaction-complex-read-04.yaml ├── transaction-complex-read-05.yaml ├── transaction-complex-read-06.yaml ├── transaction-complex-read-07.yaml ├── transaction-complex-read-08.yaml ├── transaction-complex-read-09.yaml ├── transaction-complex-read-10.yaml ├── transaction-complex-read-11.yaml ├── transaction-complex-read-12.yaml ├── transaction-read-write-01.yaml ├── transaction-read-write-02.yaml ├── transaction-read-write-03.yaml ├── transaction-simple-read-01.yaml ├── transaction-simple-read-02.yaml ├── transaction-simple-read-03.yaml ├── transaction-simple-read-04.yaml ├── transaction-simple-read-05.yaml ├── transaction-simple-read-06.yaml ├── transaction-write-01.yaml ├── transaction-write-02.yaml ├── transaction-write-03.yaml ├── transaction-write-04.yaml ├── transaction-write-05.yaml ├── transaction-write-06.yaml ├── transaction-write-07.yaml ├── transaction-write-08.yaml ├── transaction-write-09.yaml ├── transaction-write-10.yaml ├── transaction-write-11.yaml ├── transaction-write-12.yaml ├── transaction-write-13.yaml ├── transaction-write-14.yaml ├── transaction-write-15.yaml ├── transaction-write-16.yaml ├── transaction-write-17.yaml ├── transaction-write-18.yaml └── transaction-write-19.yaml ├── related-work.tex ├── sf-statistics.tex ├── tables └── number-of-entities-transaction.tex ├── templates ├── choke-point-query-mapping-template.tex └── query-card-template.tex ├── transaction-complex-read-queries.tex ├── transaction-rw-queries.tex ├── transaction-simple-read-queries.tex ├── transaction-workload.tex ├── transaction-write-queries.tex └── workloads.tex /.github/workflows/compile-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/.github/workflows/compile-spec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/README.md -------------------------------------------------------------------------------- /abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/abstract.tex -------------------------------------------------------------------------------- /acid-test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/acid-test.tex -------------------------------------------------------------------------------- /acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/acknowledgements.tex -------------------------------------------------------------------------------- /analytics-workload.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/analytics-workload.tex -------------------------------------------------------------------------------- /arxiv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/arxiv.sh -------------------------------------------------------------------------------- /auditing-rules.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/auditing-rules.tex -------------------------------------------------------------------------------- /benchmark-overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/benchmark-overview.tex -------------------------------------------------------------------------------- /bib/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/bib/references.bib -------------------------------------------------------------------------------- /choke-point-query-mapping/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /choke-points.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points.tex -------------------------------------------------------------------------------- /choke-points/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /choke-points/choke-points-queries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/choke-points-queries.tex -------------------------------------------------------------------------------- /choke-points/cp-1-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-1-1.tex -------------------------------------------------------------------------------- /choke-points/cp-1-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-1-2.tex -------------------------------------------------------------------------------- /choke-points/cp-1-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-1-3.tex -------------------------------------------------------------------------------- /choke-points/cp-1-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-1-4.tex -------------------------------------------------------------------------------- /choke-points/cp-2-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-1.tex -------------------------------------------------------------------------------- /choke-points/cp-2-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-2.tex -------------------------------------------------------------------------------- /choke-points/cp-2-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-3.tex -------------------------------------------------------------------------------- /choke-points/cp-2-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-4.tex -------------------------------------------------------------------------------- /choke-points/cp-2-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-5.tex -------------------------------------------------------------------------------- /choke-points/cp-2-6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-2-6.tex -------------------------------------------------------------------------------- /choke-points/cp-3-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-3-1.tex -------------------------------------------------------------------------------- /choke-points/cp-3-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-3-2.tex -------------------------------------------------------------------------------- /choke-points/cp-3-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-3-3.tex -------------------------------------------------------------------------------- /choke-points/cp-3-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-3-4.tex -------------------------------------------------------------------------------- /choke-points/cp-4-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-4-1.tex -------------------------------------------------------------------------------- /choke-points/cp-4-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-4-2.tex -------------------------------------------------------------------------------- /choke-points/cp-4-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-4-3.tex -------------------------------------------------------------------------------- /choke-points/cp-4-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-4-4.tex -------------------------------------------------------------------------------- /choke-points/cp-5-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-5-1.tex -------------------------------------------------------------------------------- /choke-points/cp-5-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-5-2.tex -------------------------------------------------------------------------------- /choke-points/cp-5-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-5-3.tex -------------------------------------------------------------------------------- /choke-points/cp-6-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-6-1.tex -------------------------------------------------------------------------------- /choke-points/cp-6-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-6-2.tex -------------------------------------------------------------------------------- /choke-points/cp-6-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-6-3.tex -------------------------------------------------------------------------------- /choke-points/cp-7-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-1.tex -------------------------------------------------------------------------------- /choke-points/cp-7-10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-10.tex -------------------------------------------------------------------------------- /choke-points/cp-7-11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-11.tex -------------------------------------------------------------------------------- /choke-points/cp-7-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-2.tex -------------------------------------------------------------------------------- /choke-points/cp-7-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-3.tex -------------------------------------------------------------------------------- /choke-points/cp-7-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-4.tex -------------------------------------------------------------------------------- /choke-points/cp-7-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-5.tex -------------------------------------------------------------------------------- /choke-points/cp-7-6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-6.tex -------------------------------------------------------------------------------- /choke-points/cp-7-7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-7.tex -------------------------------------------------------------------------------- /choke-points/cp-7-8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-8.tex -------------------------------------------------------------------------------- /choke-points/cp-7-9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-7-9.tex -------------------------------------------------------------------------------- /choke-points/cp-8-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-1.tex -------------------------------------------------------------------------------- /choke-points/cp-8-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-2.tex -------------------------------------------------------------------------------- /choke-points/cp-8-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-3.tex -------------------------------------------------------------------------------- /choke-points/cp-8-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-4.tex -------------------------------------------------------------------------------- /choke-points/cp-8-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-5.tex -------------------------------------------------------------------------------- /choke-points/cp-8-6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-6.tex -------------------------------------------------------------------------------- /choke-points/cp-8-7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-7.tex -------------------------------------------------------------------------------- /choke-points/cp-8-8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-8.tex -------------------------------------------------------------------------------- /choke-points/cp-8-9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-8-9.tex -------------------------------------------------------------------------------- /choke-points/cp-9-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-9-1.tex -------------------------------------------------------------------------------- /choke-points/cp-9-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-9-2.tex -------------------------------------------------------------------------------- /choke-points/cp-9-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-9-3.tex -------------------------------------------------------------------------------- /choke-points/cp-9-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-9-4.tex -------------------------------------------------------------------------------- /choke-points/cp-9-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/choke-points/cp-9-5.tex -------------------------------------------------------------------------------- /commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/commands.tex -------------------------------------------------------------------------------- /data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/data.tex -------------------------------------------------------------------------------- /defs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/defs.tex -------------------------------------------------------------------------------- /executive-summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/executive-summary.tex -------------------------------------------------------------------------------- /figures/acid/acid-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/acid/acid-schema.png -------------------------------------------------------------------------------- /figures/acid/acid-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/acid/acid-slides.pptx -------------------------------------------------------------------------------- /figures/acid/bailis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/acid/bailis.tex -------------------------------------------------------------------------------- /figures/audit-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/audit-workflow.png -------------------------------------------------------------------------------- /figures/audit.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/audit.graphml -------------------------------------------------------------------------------- /figures/cc-by.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/cc-by.pdf -------------------------------------------------------------------------------- /figures/data-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/data-schema.png -------------------------------------------------------------------------------- /figures/ldbc-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/ldbc-logo.pdf -------------------------------------------------------------------------------- /figures/ldbc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/ldbc-logo.png -------------------------------------------------------------------------------- /figures/measurement-window-selection.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/measurement-window-selection.graphml -------------------------------------------------------------------------------- /figures/measurement-window-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/measurement-window-selection.png -------------------------------------------------------------------------------- /figures/schema.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/figures/schema.pptx -------------------------------------------------------------------------------- /generate-tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/generate-tex.py -------------------------------------------------------------------------------- /introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/introduction.tex -------------------------------------------------------------------------------- /ldbc-finbench-specification.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/ldbc-finbench-specification.tex -------------------------------------------------------------------------------- /ldbc.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/ldbc.cls -------------------------------------------------------------------------------- /listings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/listings.tex -------------------------------------------------------------------------------- /main-doc-settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/main-doc-settings.tex -------------------------------------------------------------------------------- /packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/packages.tex -------------------------------------------------------------------------------- /patterns/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/Manual.md -------------------------------------------------------------------------------- /patterns/crop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/crop.sh -------------------------------------------------------------------------------- /patterns/transaction-complex-read-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-01.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-02.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-03.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-04.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-05.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-06.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-07.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-08.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-09.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-10.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-11.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read-12.png -------------------------------------------------------------------------------- /patterns/transaction-complex-read.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-complex-read.pptx -------------------------------------------------------------------------------- /patterns/transaction-read-write-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-read-write-01.png -------------------------------------------------------------------------------- /patterns/transaction-read-write-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-read-write-02.png -------------------------------------------------------------------------------- /patterns/transaction-read-write-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-read-write-03.png -------------------------------------------------------------------------------- /patterns/transaction-read-write.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-read-write.pptx -------------------------------------------------------------------------------- /patterns/transaction-simple-read-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-01.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-02.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-03.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-04.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-05.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read-06.png -------------------------------------------------------------------------------- /patterns/transaction-simple-read.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-simple-read.pptx -------------------------------------------------------------------------------- /patterns/transaction-write-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-01.png -------------------------------------------------------------------------------- /patterns/transaction-write-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-02.png -------------------------------------------------------------------------------- /patterns/transaction-write-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-03.png -------------------------------------------------------------------------------- /patterns/transaction-write-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-04.png -------------------------------------------------------------------------------- /patterns/transaction-write-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-05.png -------------------------------------------------------------------------------- /patterns/transaction-write-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-06.png -------------------------------------------------------------------------------- /patterns/transaction-write-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-07.png -------------------------------------------------------------------------------- /patterns/transaction-write-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-08.png -------------------------------------------------------------------------------- /patterns/transaction-write-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-09.png -------------------------------------------------------------------------------- /patterns/transaction-write-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-10.png -------------------------------------------------------------------------------- /patterns/transaction-write-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-11.png -------------------------------------------------------------------------------- /patterns/transaction-write-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-12.png -------------------------------------------------------------------------------- /patterns/transaction-write-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-13.png -------------------------------------------------------------------------------- /patterns/transaction-write-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-14.png -------------------------------------------------------------------------------- /patterns/transaction-write-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-15.png -------------------------------------------------------------------------------- /patterns/transaction-write-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-16.png -------------------------------------------------------------------------------- /patterns/transaction-write-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-17.png -------------------------------------------------------------------------------- /patterns/transaction-write-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-18.png -------------------------------------------------------------------------------- /patterns/transaction-write-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write-19.png -------------------------------------------------------------------------------- /patterns/transaction-write.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/patterns/transaction-write.pptx -------------------------------------------------------------------------------- /query-card-definitions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-card-definitions.tex -------------------------------------------------------------------------------- /query-cards/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-cards/.gitignore -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-complex-read-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-complex-read-10.yaml -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-complex-read-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-complex-read-11.yaml -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-simple-read-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-simple-read-07.yaml -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-simple-read-08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-simple-read-08.yaml -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-write-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-write-12.yaml -------------------------------------------------------------------------------- /query-specifications/[deprecated]transaction-write-15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/[deprecated]transaction-write-15.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-01.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-02.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-03.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-04.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-05.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-06.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-07.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-08.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-09.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-10.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-11.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-complex-read-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-complex-read-12.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-read-write-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-read-write-01.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-read-write-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-read-write-02.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-read-write-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-read-write-03.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-01.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-02.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-03.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-04.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-05.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-simple-read-06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-simple-read-06.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-01.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-02.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-03.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-04.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-05.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-06.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-07.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-08.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-09.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-10.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-11.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-12.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-13.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-14.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-15.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-16.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-17.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-18.yaml -------------------------------------------------------------------------------- /query-specifications/transaction-write-19.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/query-specifications/transaction-write-19.yaml -------------------------------------------------------------------------------- /related-work.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/related-work.tex -------------------------------------------------------------------------------- /sf-statistics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/sf-statistics.tex -------------------------------------------------------------------------------- /tables/number-of-entities-transaction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/tables/number-of-entities-transaction.tex -------------------------------------------------------------------------------- /templates/choke-point-query-mapping-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/templates/choke-point-query-mapping-template.tex -------------------------------------------------------------------------------- /templates/query-card-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/templates/query-card-template.tex -------------------------------------------------------------------------------- /transaction-complex-read-queries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/transaction-complex-read-queries.tex -------------------------------------------------------------------------------- /transaction-rw-queries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/transaction-rw-queries.tex -------------------------------------------------------------------------------- /transaction-simple-read-queries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/transaction-simple-read-queries.tex -------------------------------------------------------------------------------- /transaction-workload.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/transaction-workload.tex -------------------------------------------------------------------------------- /transaction-write-queries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/transaction-write-queries.tex -------------------------------------------------------------------------------- /workloads.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/ldbc_finbench_docs/HEAD/workloads.tex --------------------------------------------------------------------------------