Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,549 for MEMORY (0.13 sec)

  1. releasenotes/notes/we-memory-leaks.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [47893]
    releaseNotes:
      - |
        **Fixed** a memory leak when `hostNetwork` pods scale up and down.
      - |
        **Fixed** a memory leak when `WorkloadEntries` change their IP address.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 22:28:50 UTC 2023
    - 325 bytes
    - Viewed (0)
  2. releasenotes/notes/pq-memory-leak.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 13 18:49:44 UTC 2021
    - 168 bytes
    - Viewed (0)
  3. cmd/metrics-v3-system-memory.go

    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    	memFreeMD      = NewGaugeMD(memFree, "Free memory on the node")
    	memBuffersMD   = NewGaugeMD(memBuffers, "Buffers memory on the node")
    	memCacheMD     = NewGaugeMD(memCache, "Cache memory on the node")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:10:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. releasenotes/notes/update-grafana-memory-compute.yaml

    area: telemetry
    
    releaseNotes:
    - |
      **Updated** the "Control Plane Dashboard" and the "Performance Dashboard" to use the `container_memory_working_set_bytes` metric
      to display memory. This metric only counts memory that *cannot be reclaimed* by the kernel even under memory pressure,
      and therefore more relevant for tracking. It is also consistent with `kubectl top`. The reported values are lower than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 474 bytes
    - Viewed (0)
  5. releasenotes/notes/fix-high-memory-usage-due-toserviceentries.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 25531
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 24 18:00:11 UTC 2020
    - 205 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}), framework.Resource{MilliCPU: 1, Memory: 3}, framework.Resource{MilliCPU: 1, Memory: 2}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 9, Memory: 19})),
    			name:       "too many resources fails due to highest init container memory",
    			wantStatus: framework.NewStatus(framework.Unschedulable, getErrReason(v1.ResourceMemory)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/summary_sys_containers_windows.go

    			}
    		}
    
    		if pod.Memory != nil {
    			podsSummary.Memory.Time = now
    			if pod.Memory.AvailableBytes != nil {
    				availableBytes = availableBytes + *pod.Memory.AvailableBytes
    			}
    			if pod.Memory.UsageBytes != nil {
    				usageBytes = usageBytes + *pod.Memory.UsageBytes
    			}
    			if pod.Memory.WorkingSetBytes != nil {
    				workingSetBytes = workingSetBytes + *pod.Memory.WorkingSetBytes
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. pilot/pkg/config/memory/controller_test.go

    import (
    	"sync/atomic"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/test/mock"
    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    const (
    	// TestNamespace specifies the namespace for testing
    	TestNamespace = "istio-memory-test"
    )
    
    func TestControllerEvents(t *testing.T) {
    	store := memory.Make(collections.Mocks)
    	ctl := memory.NewController(store)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 15:37:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top