Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haf_api_node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
haf_api_node
Commits
602dcedc
Commit
602dcedc
authored
3 months ago
by
Dan Notestein
Browse files
Options
Downloads
Patches
Plain Diff
Fix the check in zfs snapshot script
parent
7454bf79
No related branches found
Branches containing commit
No related tags found
2 merge requests
!66
Merge develop to master for release
,
!53
Update log rotation config
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
create_zfs_datasets.sh
+12
-3
12 additions, 3 deletions
create_zfs_datasets.sh
snapshot_zfs_datasets.sh
+18
-8
18 additions, 8 deletions
snapshot_zfs_datasets.sh
with
30 additions
and
11 deletions
create_zfs_datasets.sh
+
12
−
3
View file @
602dcedc
...
@@ -6,7 +6,7 @@ print_help() {
...
@@ -6,7 +6,7 @@ print_help() {
echo
"Usage:
$0
--env-file=filename"
echo
"Usage:
$0
--env-file=filename"
}
}
OPTIONS
=
$(
getopt
-o
he:
--long
env-file:,help,zpool:,top-level-dataset:
-n
"
$0
"
--
"
$@
"
)
OPTIONS
=
$(
getopt
-o
he:
s
--long
env-file:,help,zpool:,top-level-dataset:
,skip-empty-snapshot
-n
"
$0
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
print_help
print_help
...
@@ -17,6 +17,7 @@ ZPOOL=""
...
@@ -17,6 +17,7 @@ ZPOOL=""
TOP_LEVEL_DATASET
=
""
TOP_LEVEL_DATASET
=
""
ZPOOL_MOUNT_POINT
=
""
ZPOOL_MOUNT_POINT
=
""
TOP_LEVEL_DATASET_MOUNTPOINT
=
""
TOP_LEVEL_DATASET_MOUNTPOINT
=
""
SKIP_EMPTY_SNAPSHOT
=
false
eval set
--
"
$OPTIONS
"
eval set
--
"
$OPTIONS
"
...
@@ -34,6 +35,10 @@ while true; do
...
@@ -34,6 +35,10 @@ while true; do
TOP_LEVEL_DATASET
=
"
$2
"
TOP_LEVEL_DATASET
=
"
$2
"
shift
2
shift
2
;;
;;
--skip-empty-snapshot
|
-s
)
SKIP_EMPTY_SNAPSHOT
=
true
shift
;;
--help
|
-h
)
--help
|
-h
)
print_help
print_help
exit
0
exit
0
...
@@ -134,5 +139,9 @@ chown -R 1000:100 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs"
...
@@ -134,5 +139,9 @@ chown -R 1000:100 "$TOP_LEVEL_DATASET_MOUNTPOINT/logs"
# 105:109 is postgres:postgres inside the container
# 105:109 is postgres:postgres inside the container
chown
-R
105:109
"
$TOP_LEVEL_DATASET_MOUNTPOINT
/logs/postgresql"
"
$TOP_LEVEL_DATASET_MOUNTPOINT
/logs/pgbadger"
chown
-R
105:109
"
$TOP_LEVEL_DATASET_MOUNTPOINT
/logs/postgresql"
"
$TOP_LEVEL_DATASET_MOUNTPOINT
/logs/pgbadger"
# Create a snapshot called 'empty'
if
[
"
$SKIP_EMPTY_SNAPSHOT
"
=
false
]
;
then
./snapshot_zfs_datasets.sh empty
# Create a snapshot called 'empty'
./snapshot_zfs_datasets.sh empty
else
echo
"Skipping creation of 'empty' snapshot."
fi
This diff is collapsed.
Click to expand it.
snapshot_zfs_datasets.sh
+
18
−
8
View file @
602dcedc
...
@@ -13,9 +13,10 @@ print_help() {
...
@@ -13,9 +13,10 @@ print_help() {
echo
" dataset, then swap back afterwards. That way the large logs files aren't"
echo
" dataset, then swap back afterwards. That way the large logs files aren't"
echo
" of the snapshots. This is a lot faster, but makes managing datasets more"
echo
" of the snapshots. This is a lot faster, but makes managing datasets more"
echo
" complicated, so only use it if you really need to"
echo
" complicated, so only use it if you really need to"
echo
" --force, -f continue without prompting, even if warnings are detected"
}
}
OPTIONS
=
$(
getopt
-o
he:pt:l:
--long
env-file:,help,zpool:,top-level-dataset:,public-snapshot,temp-dir:,swap-logs-with-dataset:
-n
"
$0
"
--
"
$@
"
)
OPTIONS
=
$(
getopt
-o
he:pt:l:
f
--long
env-file:,help,zpool:,top-level-dataset:,public-snapshot,temp-dir:,swap-logs-with-dataset:
,force
-n
"
$0
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
print_help
print_help
...
@@ -29,6 +30,7 @@ TOP_LEVEL_DATASET_MOUNTPOINT=""
...
@@ -29,6 +30,7 @@ TOP_LEVEL_DATASET_MOUNTPOINT=""
PUBLIC_SNAPSHOT
=
0
PUBLIC_SNAPSHOT
=
0
SWAP_LOGS_DATASET
=
""
SWAP_LOGS_DATASET
=
""
TMPDIR
=
/tmp
TMPDIR
=
/tmp
FORCE
=
0
eval set
--
"
$OPTIONS
"
eval set
--
"
$OPTIONS
"
...
@@ -58,6 +60,10 @@ while true; do
...
@@ -58,6 +60,10 @@ while true; do
SWAP_LOGS_DATASET
=
"
$2
"
SWAP_LOGS_DATASET
=
"
$2
"
shift
2
shift
2
;;
;;
--force
|
-f
)
FORCE
=
1
shift
2
;;
--help
|
-h
)
--help
|
-h
)
print_help
print_help
exit
0
exit
0
...
@@ -141,7 +147,7 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
...
@@ -141,7 +147,7 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
fi
fi
last_shared_memory_write
=
$(
stat
-c
%Y
"
${
TOP_LEVEL_DATASET_MOUNTPOINT
}
/shared_memory/shared_memory.bin"
)
last_shared_memory_write
=
$(
stat
-c
%Y
"
${
TOP_LEVEL_DATASET_MOUNTPOINT
}
/shared_memory/shared_memory.bin"
)
last_blockchain_write
=
$(
find
"
${
TOP_LEVEL_DATASET_MOUNTPOINT
}
/blockchain"
-type
f
-printf
'%T@\n'
|
sort
-n
|
tail
-1
)
last_blockchain_write
=
$(
find
"
${
TOP_LEVEL_DATASET_MOUNTPOINT
}
/blockchain"
-type
f
-printf
'%T@\n'
|
sort
-n
|
tail
-1
|
cut
-d
.
-f1
)
if
[
-z
"
$last_blockchain_write
"
]
;
then
if
[
-z
"
$last_blockchain_write
"
]
;
then
echo
"Warning: No files found in the blockchain directory"
echo
"Warning: No files found in the blockchain directory"
...
@@ -152,12 +158,16 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
...
@@ -152,12 +158,16 @@ if [ "$SNAPSHOT_NAME" != "empty" ]; then
if
[
$time_diff
-gt
300
]
||
[
$time_diff
-lt
-300
]
;
then
if
[
$time_diff
-gt
300
]
||
[
$time_diff
-lt
-300
]
;
then
echo
"Warning: The shared_memory.bin file was not written to within 5 minutes of the last write to a file in the blockchain directory."
echo
"Warning: The shared_memory.bin file was not written to within 5 minutes of the last write to a file in the blockchain directory."
read
-p
"Do you want to continue? (y/n): "
choice
if
[
"
$FORCE
"
-eq
1
]
;
then
case
"
$choice
"
in
echo
"Continuing due to --force option."
y|Y
)
echo
"Continuing..."
;;
else
n|N
)
echo
"Aborting."
;
exit
1
;;
read
-p
"Do you want to continue? (y/n): "
choice
*
)
echo
"Invalid input. Aborting."
;
exit
1
;;
case
"
$choice
"
in
esac
y|Y
)
echo
"Continuing..."
;;
n|N
)
echo
"Aborting."
;
exit
1
;;
*
)
echo
"Invalid input. Aborting."
;
exit
1
;;
esac
fi
fi
fi
fi
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment