Skip to content

Docker WSL2 Windows Containers memory issue with Oracle consuming all container virtual memory no matter what the limit is set to, eventually it switches to consume pagefile on the HDD which bombs server performance. Container usage: "docker-compose up -d" with volume mapping to NTFS (C:\My\Path\To\DB\Files) and port mapping #51254

Docker WSL2 Windows Containers memory issue with Oracle consuming all container virtual memory no matter what the limit is set to, eventually it switches to consume pagefile on the HDD which bombs server performance. Container usage: "docker-compose up -d" with volume mapping to NTFS (C:\My\Path\To\DB\Files) and port mapping

Docker WSL2 Windows Containers memory issue with Oracle consuming all container virtual memory no matter what the limit is set to, eventually it switches to consume pagefile on the HDD which bombs server performance. Container usage: "docker-compose up -d" with volume mapping to NTFS (C:\My\Path\To\DB\Files) and port mapping #51254

Workflow file for this run

name: Sync GitHub with ADO
on:
issues:
types: [closed, edited, deleted, reopened, assigned, unassigned, labeled, unlabeled]
issue_comment:
jobs:
build:
name: GH-Sync tracked issue
if: ${{ github.event.label.name == 'tracking' || contains(github.event.issue.labels.*.name, 'tracking') }} # Filters out issues/events without the 'tracking' label
runs-on: ubuntu-latest
steps:
- name: 'Trigger gh-sync'
uses: craigloewen-msft/gh-sync@main
with:
ado-organization-url: ${{ secrets.AZURE_DEVOPS_URL }}
ado-project: ${{ secrets.AZURE_DEVOPS_PROJECT }}
ado-area-path: ${{ secrets.AZURE_DEVOPS_PATH }}
github-repo: 'microsoft/WSL'
issue-number: ${{github.event.issue.number}} # Auto-generated from GitHub action
ado-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} # Your Personal Access Token (PAT)
github-token: ${{ secrets.GITHUB_TOKEN }} # Auto-generated from GitHub action
network-sync:
name: GH-Sync networking issue
if: ${{ github.event.label.name == 'network' || contains(github.event.issue.labels.*.name, 'network') }}
runs-on: ubuntu-latest
steps:
- name: 'Trigger gh-sync'
uses: craigloewen-msft/gh-sync@main
with:
ado-organization-url: ${{ secrets.AZURE_DEVOPS_URL }}
ado-project: ${{ secrets.AZURE_DEVOPS_PROJECT }}
ado-area-path: ${{ secrets.AZURE_DEVOPS_NETWORKING_PATH }}
github-repo: 'microsoft/WSL'
issue-number: ${{github.event.issue.number}} # Auto-generated from GitHub action
ado-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} # Your Personal Access Token (PAT)
github-token: ${{ secrets.GITHUB_TOKEN }} # Auto-generated from GitHub action
gpu-sync:
name: GH-Sync GPU issue
if: ${{ github.event.label.name == 'GPU' || contains(github.event.issue.labels.*.name, 'GPU') }}
runs-on: ubuntu-latest
steps:
- name: 'Trigger gh-sync'
uses: craigloewen-msft/gh-sync@main
with:
ado-organization-url: ${{ secrets.AZURE_DEVOPS_URL }}
ado-project: ${{ secrets.AZURE_DEVOPS_PROJECT }}
ado-area-path: ${{ secrets.AZURE_DEVOPS_GPU_PATH }}
github-repo: 'microsoft/WSL'
issue-number: ${{github.event.issue.number}} # Auto-generated from GitHub action
ado-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} # Your Personal Access Token (PAT)
github-token: ${{ secrets.GITHUB_TOKEN }} # Auto-generated from GitHub action
ado-assigned-to: ${{ secrets.AZURE_DEVOPS_GPU_ASSIGNED_TO }}