An update to the backing OQGRAPH table does not reflect when querying the OQGRAPH table. The change reflects after a server restart.
Running Ubuntu 12.04 32-bit. MariaDB 10.0.7 installed from standard package, 3.2.0-58-gerneric-pae kernel, dual CPU
How to repeat:
CREATE TABLE oq2_backing (
|
origid INT UNSIGNED NOT NULL,
|
destid INT UNSIGNED NOT NULL,
|
weight DOUBLE NOT NULL,
|
PRIMARY KEY (origid, destid),
|
KEY (destid)
|
);
|
|
INSERT INTO oq2_backing(origid, destid, weight)
|
VALUES (1,2,1), (2,3,1), (3,4,3), (4,5,1), (2,6,10), (5,6,2);
|
CREATE TABLE oq2_graph (
|
latch VARCHAR(32) NULL,
|
origid BIGINT UNSIGNED NULL,
|
destid BIGINT UNSIGNED NULL,
|
weight DOUBLE NULL,
|
seq BIGINT UNSIGNED NULL,
|
linkid BIGINT UNSIGNED NULL,
|
KEY (latch, origid, destid) USING HASH,
|
KEY (latch, destid, origid) USING HASH
|
)
|
ENGINE=OQGRAPH
|
data_table='oq2_backing' origid='origid' destid='destid' weight='weight';
|
|
UPDATE oq2_backing SET weight=4 WHERE origid=2 AND destid=6;
|
SELECT * FROM oq2_backing;
|
+--------+--------+--------+
|
| origid | destid | weight |
|
+--------+--------+--------+
|
| 1 | 2 | 1 |
|
| 2 | 3 | 1 |
|
| 2 | 6 | 4 |
|
| 3 | 4 | 3 |
|
| 4 | 5 | 1 |
|
| 5 | 6 | 2 |
|
+--------+--------+--------+
|
SELECT * FROM oq2_graph;
|
+-------+--------+--------+--------+------+--------+
|
| latch | origid | destid | weight | seq | linkid |
|
+-------+--------+--------+--------+------+--------+
|
| NULL | 1 | 2 | 1 | NULL | NULL |
|
| NULL | 2 | 3 | 1 | NULL | NULL |
|
| NULL | 2 | 6 | 10 | NULL | NULL |
|
| NULL | 3 | 4 | 3 | NULL | NULL |
|
| NULL | 4 | 5 | 1 | NULL | NULL |
|
| NULL | 5 | 6 | 2 | NULL | NULL |
|
+-------+--------+--------+--------+------+--------+
|
I have repeated the bug on another machine, Ubuntu 12.04 64-bit, both fairly standard my.cnf settings. The problem persists on 10.0.8.
I have reported this bug upstream at https://bugs.launchpad.net/oqgraph/+bug/1279246 but there has been no activity.
The problem also appears to affect others - see https://mariadb.com/kb/en/how-do-i-keep-the-graph-table-and-data-table-in-sync/#comment_1055
- relates to
-
MDEV-6783
OQGRAPH - allow dependant table with query cache
-
-
Open
{"report":{"fcp":1091.4000000953674,"ttfb":193.90000009536743,"pageVisibility":"visible","entityId":31203,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"8f9683a9-cb13-4222-bb3d-b8cf736ef20e","navigationType":0,"readyForUser":1184.0999999046326,"redirectCount":0,"resourceLoadedEnd":1145.5,"resourceLoadedStart":199.40000009536743,"resourceTiming":[{"duration":185.09999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":199.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":199.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":384.5,"responseStart":0,"secureConnectionStart":0},{"duration":185.19999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":199.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":199.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":384.90000009536743,"responseStart":0,"secureConnectionStart":0},{"duration":225,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":199.90000009536743,"connectEnd":199.90000009536743,"connectStart":199.90000009536743,"domainLookupEnd":199.90000009536743,"domainLookupStart":199.90000009536743,"fetchStart":199.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":199.90000009536743,"responseEnd":424.90000009536743,"responseStart":424.90000009536743,"secureConnectionStart":199.90000009536743},{"duration":447.1000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":200.09999990463257,"connectEnd":200.09999990463257,"connectStart":200.09999990463257,"domainLookupEnd":200.09999990463257,"domainLookupStart":200.09999990463257,"fetchStart":200.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":200.09999990463257,"responseEnd":647.2000002861023,"responseStart":647.2000002861023,"secureConnectionStart":200.09999990463257},{"duration":450.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":200.5,"connectEnd":200.5,"connectStart":200.5,"domainLookupEnd":200.5,"domainLookupStart":200.5,"fetchStart":200.5,"redirectEnd":0,"redirectStart":0,"requestStart":200.5,"responseEnd":650.8000001907349,"responseStart":650.8000001907349,"secureConnectionStart":200.5},{"duration":450.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":200.7000002861023,"connectEnd":200.7000002861023,"connectStart":200.7000002861023,"domainLookupEnd":200.7000002861023,"domainLookupStart":200.7000002861023,"fetchStart":200.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":200.7000002861023,"responseEnd":651.4000000953674,"responseStart":651.4000000953674,"secureConnectionStart":200.7000002861023},{"duration":450.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":200.90000009536743,"connectEnd":200.90000009536743,"connectStart":200.90000009536743,"domainLookupEnd":200.90000009536743,"domainLookupStart":200.90000009536743,"fetchStart":200.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":200.90000009536743,"responseEnd":651.7000002861023,"responseStart":651.5999999046326,"secureConnectionStart":200.90000009536743},{"duration":451.90000009536743,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":201.09999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":201.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":653,"responseStart":0,"secureConnectionStart":0},{"duration":450.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":201.30000019073486,"connectEnd":201.30000019073486,"connectStart":201.30000019073486,"domainLookupEnd":201.30000019073486,"domainLookupStart":201.30000019073486,"fetchStart":201.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":201.30000019073486,"responseEnd":652.2000002861023,"responseStart":652.0999999046326,"secureConnectionStart":201.30000019073486},{"duration":451.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":201.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":201.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":653.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":451.40000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":201.59999990463257,"connectEnd":201.59999990463257,"connectStart":201.59999990463257,"domainLookupEnd":201.59999990463257,"domainLookupStart":201.59999990463257,"fetchStart":201.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":201.59999990463257,"responseEnd":653,"responseStart":653,"secureConnectionStart":201.59999990463257},{"duration":879.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":207.5,"connectEnd":207.5,"connectStart":207.5,"domainLookupEnd":207.5,"domainLookupStart":207.5,"fetchStart":207.5,"redirectEnd":0,"redirectStart":0,"requestStart":207.5,"responseEnd":1087,"responseStart":1087,"secureConnectionStart":207.5},{"duration":937.4000000953674,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":208.09999990463257,"connectEnd":208.09999990463257,"connectStart":208.09999990463257,"domainLookupEnd":208.09999990463257,"domainLookupStart":208.09999990463257,"fetchStart":208.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":208.09999990463257,"responseEnd":1145.5,"responseStart":1145.5,"secureConnectionStart":208.09999990463257},{"duration":504.7000002861023,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":575.0999999046326,"connectEnd":575.0999999046326,"connectStart":575.0999999046326,"domainLookupEnd":575.0999999046326,"domainLookupStart":575.0999999046326,"fetchStart":575.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":575.0999999046326,"responseEnd":1079.8000001907349,"responseStart":1079.8000001907349,"secureConnectionStart":575.0999999046326},{"duration":252.7000002861023,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1057.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1057.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1310.2000002861023,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":14,"responseStart":194,"responseEnd":207,"domLoading":197,"domInteractive":1362,"domContentLoadedEventStart":1362,"domContentLoadedEventEnd":1413,"domComplete":1913,"loadEventStart":1913,"loadEventEnd":1913,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1324.5999999046326},{"name":"bigPipe.sidebar-id.end","time":1326.4000000953674},{"name":"bigPipe.activity-panel-pipe-id.start","time":1326.5999999046326},{"name":"bigPipe.activity-panel-pipe-id.end","time":1337.0999999046326},{"name":"activityTabFullyLoaded","time":1430.5999999046326}],"measures":[],"correlationId":"9fc0770544bfab","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":108,"dbReadsTimeInMs":12,"dbConnsTimeInMs":20,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
that's right i was searching rev 4012 at .cc not .h