Questions tagged [journal]
185 questions
3
votes
0 answers
How docker treats fsync on guest filesystem? Is it possible to lost data during host system crash?
Consider the following scenario:
We work with DBMS inside docker container;
DBMS writes WAL or REDO log, and calls fsync on transaction commits;
fsync instructs guest OS to flush 'dirty' IO buffers to disk;
Data stays in IO buffer on host OS;
Host…

user2517908
- 51
- 5
3
votes
1 answer
SQLite WAL mode, checkpoint on background thread, wal-journal never shrinks
The SQLite documentation says (here) that you can avoid checkpoint pauses in WAL-mode by running the checkpoints on a separate thread. I tried this, and it doesn't appear to work: the '-wal' file grows without bound, it is unclear whether anything…

zwol
- 135,547
- 38
- 252
- 361
3
votes
1 answer
Clarification regarding journal_size_limit in SQLite
If I set journal_size_limit = 67110000 (64 MiB) will I be able to:
work with / commit transactions over that value (somewhat unlikely)
be able to successfully perform a VACUUM (even if the database has like 3 GiB or more)
The VACUUM command works…

Alix Axel
- 151,645
- 95
- 393
- 500
3
votes
2 answers
How to update OJS
Would you please let me know how to update OJS (Open Journal System). I have installed it on a shared server and I have no access to the shell, only a web interface and control panel (direct admin) is allowed. I think there must be some update…

remo
- 880
- 2
- 14
- 32
3
votes
1 answer
How to modify the links that appear on Asset Publisher portlet?
The requirement is as follows,
When a new web content(corresponding to a particular structure, say A) is published, it should automatically get updated on the Asset Publisher portlet (default functionality of Asset Publisher).
By default the Title…

irene
- 37
- 1
- 9
2
votes
2 answers
How can i journal all my tables's schema in db2 iseries as/400?
I have created using system i navigator a jounral called abc in schema called TEST.Now i want to journal all the tables in my schema called mySchema how can i do that.I can only journal only one table.Is there any script to journal all the tables…

BenMansourNizar
- 1,558
- 4
- 21
- 42
2
votes
1 answer
Opening a sqlite3 DB on a read-only filesystem with a -journal file
I've got a sqlite3 DB that I need to read (not write) sitting on a read-only filesystem. There is also a -journal file associated with the database, which is interfering with opening the database because the first thing the sqlite code wants to do…

ericg
- 8,413
- 9
- 43
- 77
2
votes
2 answers
OpenCart 3 + Journal 3, remove email field from guest checkout?
I want to remove email field from checkout page for guest, I use OpenCart 3 with theme Journal 3. So what I can do?
I've tried to call out it from guest.php but still not work.

Ahmed Mohsen
- 31
- 4
2
votes
1 answer
where is in journal3 (template for opencart) iframe? And how can I changing it?
I was look for .twig file or section in admin panel but didnt find nothing.
I want to change layout in this iframe.
OpenCart version 3 on the twig.
Thiss button for call iframe:

borgerry
- 33
- 3
2
votes
2 answers
Where is the Add to Cart button in journal3 theme?
So I am using journal3 theme (opencart) and I can't seem to find where's the Add to Cart button at.
I know that Buy Now & Question buttons are at Journal > Product Extras > Product Extra Button
But where can I find the Add to Cart button and edit…

Samantha Rocker
- 157
- 1
- 10
2
votes
0 answers
Very slow MongoDB queries while using IXSCAN as a winning plan for queries
I have DB with about 30M records in a collection with about 100GB collection size (total documents and indexes).
I have a compound index that filters data based on user_id and some other fields like: is_active, is_logged_in, etc.
With MongoDB…

Alireza
- 6,497
- 13
- 59
- 132
2
votes
2 answers
Configuration file in Python for logging instead function
i have function:
def go_logger(logfilename):
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
logging.basicConfig(filemode='a', datefmt='%m-%d-%Y %H:%M:%S')
logger = logging.getLogger(logfilename)
…

Piduna
- 609
- 12
- 28
2
votes
3 answers
How to redirect log file content to systemd journal?
I have a program that accept a --log-file parameter. I want to wrapper this program into a systemd service, and write the log to the journal.
The program can run in daemon mode, and supports restart and stop actions.
I found a systemd-cat, but it…

David S.
- 10,578
- 12
- 62
- 104
2
votes
1 answer
Spring Boot Admin Journal history
Is there any way to keep the history about application status changing in Spring Boot Admin Journal page after restart the Spring Boot Admin server?
There is history about all the status changes of all registered applications, but if i restart the…

evilsoldier
- 161
- 12
2
votes
2 answers
Stack traces from node are sometimes truncated. How can I see the full error?
I have a route that (deliberately) crashes my node app. When I visit that route, I get a proper log of the crash:
/Users/me/Documents/myapp/routes/index.js:795
global.fakeMethod();
^
TypeError: global.fakeMethod is…

mikemaccana
- 110,530
- 99
- 389
- 494